home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Megahits 6
/
Megahits 6 (1995)(GTI - Rhein-Main-Soft)(DE)(Disc 2 of 2)[!].iso
/
time_ungepackt
/
time_271_300
/
time287
/
superview
/
sv_arexxdemo.rx
< prev
Wrap
Text File
|
1995-07-15
|
580b
|
31 lines
/* Super View ARexx Demo V1.00, © 1993 by Andreas R. Kleinert */
address command
SuperView "-INSTALL_APPMENU=FALSE -INSTALL_APPICON=FALSE"
say ""
say "ARexx : SuperView has been started : Waiting a moment."
wait 2
say "ARexx : Load an IFF-ILBM Gfx via the SHOW command"
address 'SuperView.rx' "SHOW=Test.iff"
wait 2
say "ARexx : Save Gfx as IFF-ACBM"
address 'SuperView.rx' "SAVE_ACBM=Test_acbm.iff"
say "ARexx : Load this IFF-ACBM Gfx now for control"
address 'SuperView.rx' "SHOW=Test_acbm.iff"
say "ARexx : O.K. : Let's quit !"
address 'SuperView.rx' "QUIT"
exit